home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 117 / MacAddict 117.dmg / Software / Utilities / CopyRoms 0.2.0 (freeware).dmg / CopyRoms 0.2.0(freeware) / CopyRoms 0.2.0 / source / CopyRoms.r < prev   
Encoding:
Text File  |  2005-04-12  |  1.1 KB  |  56 lines

  1. /*
  2.     CopyRoms.r
  3.  
  4.     Copyright (C) 2005 Paul Pratt
  5.  
  6.     You can redistribute this file and/or modify it under the terms
  7.     of version 2 of the GNU General Public License as published by
  8.     the Free Software Foundation.  You should have received a copy
  9.     of the license along with this file; see the file COPYING.
  10.  
  11.     This file is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     license for more details.
  15. */
  16.  
  17. #include "Types.r"
  18. #include "Icons.r"
  19.  
  20. resource 'vers' (1) {
  21.     0,
  22.     2 * 16 + 0,
  23.     release,
  24.     0x0,
  25.     0,
  26.     "0.2.0",
  27.     "CopyRoms-0.2.0, Copyright 2005 Paul C. Pratt."
  28. };
  29.  
  30. /*
  31.     for SIZE flags, just pretend it's a normal
  32.     application. i.e. it would act normally, if
  33.     it didn't quit immediately after launch.
  34. */
  35.  
  36. resource 'SIZE' (-1) {
  37.     reserved,
  38.     acceptSuspendResumeEvents,
  39.     reserved,
  40.     canBackground,
  41.     multiFinderAware,
  42.     backgroundAndForeground,
  43.     dontGetFrontClicks,
  44.     ignoreChildDiedEvents,
  45.     is32BitCompatible,
  46.     isHighLevelEventAware,
  47.     localAndRemoteHLEvents,
  48.     isStationeryAware,
  49.     useTextEditServices,
  50.     reserved,
  51.     reserved,
  52.     reserved,
  53.     65536,
  54.     65536
  55. };
  56.